function component
code:jsx
function Welcome(props) {
return <h1>Hello, {props.name}</h1>;
}
ただのJSの関数(function)だから、function component code:ts
const Welcome: React.FC<IProps> = (props) => {
return <h1>Hello, {props.name}</h1>;
}
型としてはReact.FCを使える
ジェネリクスにPropsのInterfaceを渡せる